home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / cug191 / testc.b < prev    next >
Text File  |  1986-07-10  |  172b  |  10 lines

  1. #include "a:stdio.h"
  2. #include "a:math.h"
  3. main()
  4. { int i ; float sq(),cu() ;
  5.  for (i= 0; i < 15 ; i++)
  6.  printf("%d %f %f\n",i,sq( (float) i),cu( (float) i) ) ;
  7. }
  8.  
  9.  
  10.